 *, *::before, *::after {
      box-sizing: border-box ;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg-light: #faf9f5;
      --bg-white: #ffffff;
      --text-dark: #0f1115;
      --text-muted: #5e6473;
      --accent-orange: #f06100;
      --accent-orange-hover: #d95600;
      --card-dark: #0d101a;
      --border-light: #e2e4e9;
      --font-main: 'Plus Jakarta Sans', sans-serif;
    }

    body { 
      background-color: var(--bg-light); 
      color: var(--text-dark); 
      font-family: var(--font-main); 
      overflow-x: hidden; 
      -webkit-font-smoothing: antialiased;
    }

    .site-header {
    width: 100%;
    background: #ffffff;
    padding: 12px 6%; 
    position: absolute; 
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
   text-decoration: none;
   color: #1a1a1a;
   font-weight: 600;
   font-size: 15px;
   transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a, .btn-book-call {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px; 
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden; 
    border-radius: 30px; 
    z-index: 1;
    transition: color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.link-text {
    position: relative;
    z-index: 2;
    pointer-events: none; 
}

.link-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%; 
    aspect-ratio: 1 / 1;
    background: #f27508;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.hover-target:hover .link-bg {
    transform: translate(-50%, -50%) scale(1);
}

.hover-target:hover {
    color: #ffffff; 
}

.btn-book-call {
    display: inline-flex ;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    width: auto;
    min-width: 140px;
    height: 40px;     
    padding: 0 20px;
    border: 2px solid #ff6a00;
    border-radius: 50px;
    background: transparent;
    color: #111111;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-book-call .link-bg {
    background: #f27508; 
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
}

.header-logo-img {
    height: 38px; 
    width: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-bold {
    font-size: 16px; 
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 9px; 
    color: #888888;
    text-transform: uppercase;
    margin-top: 1px;
}

    .btn-orange {
      background: var(--accent-orange); 
      color: #fff; 
      padding: 12px 24px;
      border-radius: 10px; 
   text-decoration: none;
      font-weight: 700; 
      font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
      gap: 8px; 
      border: none;
      box-shadow: 0 4px 14px rgba(240, 97, 0, 0.25);
}

    .btn-outline {
      background: var(--bg-white); 
      color: var(--text-dark); 
      padding: 12px 24px;
      border-radius: 10px; 
    text-decoration: none;
      font-weight: 700; 
      font-size: 0.95rem;
      border: 1px solid var(--border-light); 
      display: inline-flex; 
    align-items: center;
    }

    
    .hero {
      padding: 150px 6% 80px; 
      display: grid; 
      grid-template-columns: 1fr 1fr; 
      gap: 40px; 
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
    }
    
    .hero-tag {
      display: inline-flex; 
      align-items: center; 
      gap: 8px; 
      background: rgba(240, 97, 0, 0.08);
      padding: 6px 14px; 
      border-radius: 20px; 
      font-size: 0.8rem; 
      font-weight: 800;
      color: var(--accent-orange); 
      text-transform: uppercase; 
      margin-bottom: 20px;
    }
    .hero-tag .dot { width: 8px; height: 8px; background: var(--accent-orange); border-radius: 50%; }

    .hero-title {
      font-size: 3.5rem; 
      font-weight: 800; 
      line-height: 1.1; 
      letter-spacing: -1px;
      color: var(--text-dark); 
      margin-bottom: 20px;
    }
    .hero-title span { color: var(--accent-orange); }

    .hero-sub {
      font-size: 1.1rem; 
      line-height: 1.6; 
      color: var(--text-muted);
      margin-bottom: 30px; 
      font-weight: 400;
    }

    .hero-actions { display: flex; gap: 14px; align-items: center; margin-bottom: 30px; }

    
    .mockup-container { position: relative; }
    
    .mockup-card {
      background: var(--card-dark); 
      border-radius: 20px; 
      padding: 32px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); 
      color: #fff;
    }

    .mockup-header {
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(255,255,255,0.1); 
      padding-bottom: 14px;
    }

    .stat-box-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
    .stat-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 16px; border-radius: 12px; }

    
    .marquee-bar {
      background: var(--accent-orange); 
      color: #fff; 
      padding: 16px 0; 
      overflow: hidden;
      white-space: nowrap; 
      font-weight: 800; 
      text-transform: uppercase; 
      font-size: 0.9rem;
    }
    .marquee-content { display: inline-block; animation: marquee 25s linear infinite; }
    .marquee-item { display: inline-flex; align-items: center; margin-right: 40px; }
    .marquee-item i { margin-right: 10px; font-size: 0.5rem; opacity: 0.8; }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    
    .sec-header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
    .sec-header span { color: var(--accent-orange); font-weight: 800; text-transform: uppercase; font-size: 0.8rem; }
    .sec-header h2 { font-size: 2.4rem; font-weight: 800; letter-spacing: -1px; margin-top: 6px; }

    
    .services-section { 
      padding: 80px 6%; 
      background: var(--bg-white); 
    }

    .services-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .services-grid { 
      display: grid; 
      grid-template-columns: repeat(3, 1fr); 
      gap: 24px; 
      width: 100%;
    }

    .service-card {
      background: var(--bg-light); 
      border: 1px solid var(--border-light);
      border-radius: 16px; 
      padding: 32px 24px; 
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .service-icon {
      width: 48px; 
      height: 48px; 
      background: #fde8d9; 
      color: var(--accent-orange);
      border-radius: 10px; 
      display: flex; 
      align-items: center; 
      justify-content: center;
      font-size: 1.2rem; 
      margin-bottom: 20px;
    }

    .service-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
    .service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }
    
    .service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
    .service-tag { 
      background: #fff; 
      border: 1px solid var(--border-light); 
      padding: 4px 10px; 
      border-radius: 20px; 
      font-size: 0.75rem; 
      font-weight: 700; 
    }

    
    .portfolio-section { padding: 80px 6%; max-width: 1200px; margin: 0 auto; }
    .portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    .portfolio-card {
      background: var(--bg-white); border: 1px solid var(--border-light); border-radius: 16px;
      overflow: hidden;
    }
    .portfolio-img {
      height: 260px; width: 100%; background-size: cover; background-position: center;
    }
    .portfolio-body { padding: 24px; }
    .portfolio-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
    .portfolio-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }

    
    .footer-cta {
      margin: 60px 6% 80px; 
      background: var(--card-dark); 
      border-radius: 20px;
      padding: 60px 20px; 
      text-align: center; 
      color: #fff; 
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-cta h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 12px; }
    .footer-cta p { color: #94a3b8; max-width: 500px; margin: 0 auto 28px; }

    
    @media (max-width: 900px) {
      .hero, .portfolio-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .hero-title { font-size: 2.5rem; }
      .nav-links { display: none; }
    }

    .main-footer {
    background-color: #030337;
    color: #ffffff;
    padding: 80px 6% 30px 6%;
    font-family: 'Segoe UI', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    position: relative;
    clear: both;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px ;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    text-align: left;
}

.footer-column h3 {
    font-size: 18px ;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px; 
    color: #f27508;
}

.footer-column ul {
    list-style-type: none;
    padding: 0 ;
    margin: 0;
}

.footer-column ul li {
    font-size: 14px ;
    line-height: 1.6;
    margin-bottom: 12px ;
    color: #cccccc;
}

.footer-column ul li a {
    color: #cccccc; 
    text-decoration: none; 
    transition: color 0.2s ease-in-out; 
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #f27508 ; 
}

.location-bold-title {
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-brand-column{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}

.footer-logo-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo-img{
    height: 120px;
    width: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-logo-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand-title{
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-brand-subtitle{
    font-size: 16px;
    font-weight: 800;
    color: #f27508;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    color: #888888;
    font-size: 13px ;
    margin: 0;
}

@media (max-width: 992px){
    .footer-container{
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-brand-column{
        justify-content: flex-start;
        width: 100%;
        margin-top: 20px;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual-showcase {
        height: 520px;
    }
}
